body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #86ebf8, #ffffff);
    color: #0a2a43;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .navbar-icon {
    font-size: 1.8rem;
    color: #ffffff;
  }
  
  .navbar-title {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
  }
  
  .navbar-tabs {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .navbar-tab a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .navbar-tab a:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .navbar-tab.active a {
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
  }
  
  .faq-container {
    max-width: 1000px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1s ease;
  }
  
  .faq-section h1 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3a8a;
  }
  
  .faq-item {
    margin-bottom: 2rem;
  }
  
  .faq-item h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    color: #2563eb;
  }
  
  .faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
  }
  
  .faq-item a {
    color: #1d4ed8;
    font-weight: 500;
    text-decoration: underline;
  }
  
  .faq-item a:hover {
    color: #2563eb;
    text-decoration: none;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .faq-container {
      padding: 1.5rem;
      margin: 30px 20px;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar-tabs {
      flex-direction: column;
      width: 100%;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }
  
    .navbar-tab a {
      width: 100%;
      justify-content: flex-start;
    }
  
    .faq-section h1 {
      font-size: 2rem;
    }
  
    .faq-item h2 {
      font-size: 1.2rem;
    }
  
    .faq-item p {
      font-size: 1rem;
    }
  }
  